XdsObjects Help file
XdsObjects Namespace / XdsDocument Class / Load Method / Load(Byte[]) Method
The byte array containing the document data



Load(Byte[]) Method
Load an XdsDocument object from a byte array
Syntax
Public Overloads Sub Load( _
   ByVal data() As Byte _
) 
Dim instance As XdsDocument
Dim data() As Byte
 
instance.Load(data)
public void Load( 
   byte[] data
)
public:
void Load( 
   array<byte>^ data
) 

Parameters

data
The byte array containing the document data
Remarks
Unlike the Load(String) version, this overload has no means to determine the MimeType which must be set explicitly.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also